home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / tclX6.4c / dist / osSupport / RCS / Makefile,v < prev   
Encoding:
Text File  |  1992-12-03  |  1.5 KB  |  66 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    jhh:1.1; strict;
  6. comment  @# @;
  7.  
  8.  
  9. 1.1
  10. date     92.12.03.12.38.50;  author jhh;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @#
  26. # Makefile  --
  27. #
  28. # Makefile for Extended Tcl ossupport code.
  29. #------------------------------------------------------------------------------
  30. # Copyright 1992 Karl Lehenbauer and Mark Diekhans.
  31. #
  32. # Permission to use, copy, modify, and distribute this software and its
  33. # documentation for any purpose and without fee is hereby granted, provided
  34. # that the above copyright notice appear in all copies.  Karl Lehenbauer and
  35. # Mark Diekhans make no representations about the suitability of this
  36. # software for any purpose.  It is provided "as is" without express or
  37. # implied warranty.
  38. #------------------------------------------------------------------------------
  39. # $Id: Makefile,v 2.1 1992/11/07 22:33:46 markd Exp $
  40. #------------------------------------------------------------------------------
  41. #
  42.  
  43. include ../Config.mk
  44. include ../config/$(TCL_CONFIG_FILE)
  45. SHELL=/bin/sh
  46.  
  47. #------------------------------------------------------------------------------
  48.  
  49. CFLAGS=$(OPTIMIZE_FLAG) $(XCFLAGS) -I../$(TCL_UCB_DIR) $(MEM_DEBUG_FLAGS) \
  50.   $(SYS_DEP_FLAGS) $(SUPPORT_FLAGS)
  51.  
  52. #------------------------------------------------------------------------------
  53.  
  54. all: made.tmp
  55.  
  56. made.tmp: $(SUPPORT_OBJS)
  57.     $(AR) cr ../libtcl.a $(SUPPORT_OBJS)
  58.     touch made.tmp
  59.  
  60. #------------------------------------------------------------------------------
  61.  
  62. clean:
  63.     -rm -f made.tmp
  64.     -rm -f *.o
  65. @
  66.